home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / help_sz / show < prev    next >
Text File  |  1994-02-21  |  963b  |  44 lines

  1. show:
  2.  
  3. Syntax: show ( A )
  4.  
  5. Description:
  6.  
  7.     Show takes a single argument and returns a brief description
  8.     of the argument, it's class, name, and any other pertinent
  9.     characteristics.
  10.  
  11.     Note that all the information provided by show() can be
  12.     obtained by other means. class(), type(), and size().
  13.     Additionally, direct member reference will provide the same
  14.     information ss show.
  15.  
  16.     Examples:
  17.  
  18.     > m = rand(3,5)
  19.      m =
  20.      matrix columns 1 thru 5
  21.            0.368       0.766        0.78       0.625       0.917
  22.            0.983       0.646       0.823       0.315        0.52
  23.            0.535       0.767       0.152       0.347       0.401
  24.     
  25.           > show (m)
  26.              name:      m     
  27.              class:     num   
  28.              type:      real  
  29.                nr:      3     
  30.                nc:      5     
  31.  
  32.           > m.class
  33.           num
  34.           > m.type
  35.           real
  36.           > m.nr
  37.                   3
  38.           > m.nc
  39.                   5
  40.           > m.n
  41.                  15
  42.  
  43. See Also: class, size, type
  44.